home *** CD-ROM | disk | FTP | other *** search
- {
- Console.i for PCQ Pascal
-
- Console device command definitions. Also see Utils/ConsoleUtils.i,
- Utils/CRT.i, and Utils/ConsoleIO.i for more console.device
- routines.
-
- To call the two routines defined below, you'll need to set
- ConsoleBase to an appropriate value. ConsoleUtils.i has a couple
- of functions for doing just that.
- }
-
-
- {$I "Include:Exec/IO.i"}
- {$I "Include:Devices/InputEvent.i"}
-
-
- const
-
- {***** Console commands *****}
-
- CD_ASKKEYMAP = CMD_NONSTD + 0;
- CD_SETKEYMAP = CMD_NONSTD + 1;
- CD_ASKDEFAULTKEYMAP = CMD_NONSTD + 2;
- CD_SETDEFAULTKEYMAP = CMD_NONSTD + 3;
-
-
- {***** SGR parameters *****}
-
- SGR_PRIMARY = 0;
- SGR_BOLD = 1;
- SGR_ITALIC = 3;
- SGR_UNDERSCORE = 4;
- SGR_NEGATIVE = 7;
-
- SGR_NORMAL = 22; { default foreground color, not bold }
- SGR_NOTITALIC = 23;
- SGR_NOTUNDERSCORE = 24;
- SGR_POSITIVE = 27;
-
- { these names refer to the ANSI standard, not the implementation }
-
- SGR_BLACK = 30;
- SGR_RED = 31;
- SGR_GREEN = 32;
- SGR_YELLOW = 33;
- SGR_BLUE = 34;
- SGR_MAGENTA = 35;
- SGR_CYAN = 36;
- SGR_WHITE = 37;
- SGR_DEFAULT = 39;
-
- SGR_BLACKBG = 40;
- SGR_REDBG = 41;
- SGR_GREENBG = 42;
- SGR_YELLOWBG = 43;
- SGR_BLUEBG = 44;
- SGR_MAGENTABG = 45;
- SGR_CYANBG = 46;
- SGR_WHITEBG = 47;
- SGR_DEFAULTBG = 49;
-
- { these names refer to the implementation, they are the preferred }
- { names for use with the Amiga console device. }
-
- SGR_CLR0 = 30;
- SGR_CLR1 = 31;
- SGR_CLR2 = 32;
- SGR_CLR3 = 33;
- SGR_CLR4 = 34;
- SGR_CLR5 = 35;
- SGR_CLR6 = 36;
- SGR_CLR7 = 37;
-
- SGR_CLR0BG = 40;
- SGR_CLR1BG = 41;
- SGR_CLR2BG = 42;
- SGR_CLR3BG = 43;
- SGR_CLR4BG = 44;
- SGR_CLR5BG = 45;
- SGR_CLR6BG = 46;
- SGR_CLR7BG = 47;
-
-
- {***** DSR parameters *****}
-
- DSR_CPR = 6;
-
- {***** CTC parameters *****}
-
- CTC_HSETTAB = 0;
- CTC_HCLRTAB = 2;
- CTC_HCLRTABSALL = 5;
-
- {***** TBC parameters *****}
-
- TBC_HCLRTAB = 0;
- TBC_HCLRTABSALL = 3;
-
- {***** SM and RM parameters *****}
-
- M_LNM = 20; { linefeed newline mode }
- M_ASM = '>1'; { auto scroll mode }
- M_AWM = '?7'; { auto wrap mode }
-
- var
- ConsoleBase : Address;
-
- Function RawKeyConvert(event : InputEventPtr; Buffer : String;
- Length : Integer; KeyMap : Address) : Integer;
- External;
- { Converts a raw input key using the current keymap. Also see
- Include/Utils/DeadKeyConvert, which is more powerful and often
- easier to use. }
-
- Function CDInputHandler(events : InputEventPtr; con : Address) : InputEventPtr;
- External;
-